'Use this function to find you application's location on your hardisk.

'Call this function like this:
= AppPath()

Or you can use it as part of a larger string:
= AppPath() & 


Public Function AppPath() As String
    'The app class contains information about your application
    'App.Path returns your application's path
    AppPath = App.Path
End Function